File Structure

- SpringBootHandymenNow\
	-build (builds project)\
	-gradle (used for the grade build)\
	-src	(where the source code is located)\
		-main (main code is located)\
			- kotlin (Kotlin code is stored)\
				-com	(where therein code is located)\
					- HandyMenNow (main code subdirectories are located)\
						-controller (Controller for mapping th frontend requests to the backend)\
						-model (Used to define the objects and database tables)\
						-repositories (used to define the functions which will be accessing the database.)\
						-Security	(For code which deals with the login feature/access and token authentication)\
						- Service (Where the business logic was stored)\
				-filter ( used to store the token filter code)\
			-resources (HTML/JS code is stored\
				- static (The html and code for the frontend were stored.)\
		-test	(test code is located, wasn't used though.)\
	
